home *** CD-ROM | disk | FTP | other *** search
- /*
- print.H
-
- Printer Interface Header File
-
- Copyright (C) 1992, Geoff Friesen B.Sc.
- All rights reserved.
-
- Borland C++ 3.1
- */
-
- #define LPT1 0
- #define LPT2 1
- #define LPT3 2
-
- #define MAXDRV 8
-
- #ifdef __cplusplus
- extern "C"
- {
- #endif
-
- int p_char (int c);
- int p_eject (void);
- void p_init (int _port, int _lpp);
- int p_lc (void);
- int p_loaddrv (char *_filespec);
- void p_sc (int _lp);
- int p_scandrv (char **drivers);
- int p_stat (void);
- int p_str (char *str);
- int p_xchar (int c, int count);
-
- #ifdef __cplusplus
- }
- #endif